Release 10.1A: OpenEdge Development:
Progress 4GL Reference


LIST-PROPERTY-NAMES( ) method

Returns a comma-separated list of all application-defined properties associated with the Client-principal object. The Client-principal object may be sealed or unsealed.

Return type: CHARACTER

Applies to: Client-principal object handle

Syntax
LIST-PROPERTY-NAMES( ) 

You can also use the GET-PROPERTY( ) method to get the value of a single property associated with a Client-principal object.

Example

The following code fragment illustrates how to use the LIST-PROPERTY-NAMES( ) method:

DEF VAR hCP as HANDLE. 
DEF VAR vProp as CHAR. 
. 
. 
. 
CREATE CLIENT-PRINCIPAL hCp. 
. 
. 
. 
vProp = hCP:LIST-PROPERTY-NAMES( ). 
DISPLAY vProp format “X(70)”. 

See also

CAN-DO function, ENTRY function, GET-PROPERTY( ) method, NUM-ENTRIES function, SET-PROPERTY( ) method


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095